home *** CD-ROM | disk | FTP | other *** search
- module BobNotes
- {
- interface ICorBobNotes
- {
- exception PermissionDenied
- {
- string Reason;
- };
-
- void GetLines(in wstring User, in wstring Password, out wstring Lines)
- raises (PermissionDenied);
- void SetLines(in wstring User, in wstring Password, in wstring Lines)
- raises (PermissionDenied);
- void Answer(out long Answer);
- void StringAnswer(in long Question, out wstring Answer);
- void StringAnswer2(in wstring Question, out wstring Answer);
- };
-
- interface CorBobNotesFactory
- {
- ICorBobNotes CreateInstance(in string InstanceName);
- };
-
- };